home *** CD-ROM | disk | FTP | other *** search
- scm2doc.scm
-
- Generate a documentation file from Scheme source.
- Requires the Scheme file to be formatted in a particular way.
-
- All functions to be included in the documentation should have a comment
- preceeding them containing a +f/-f around the section to appear in
- the output.
-
- All misc. section to appear in the output should be contained within
- +c/-c pairs.
-
- Note all comments must begin with `;;;' and the markers must appear
- on their own line and flush left with the comment.
-
- System : ELK
- System Specific Features :-
- (error name string args ...) ;; report an error
- (require name) ;; as in CommonLisp
- (read-string port) ;; read a line from a given port
- ;; and return it
-
-
- scm2doc:comment-prefix
- Set this to a string containing the comment style you prefer.
-
- scm2doc:format-width
- Define this to be the width of the output text.
- Note currently that all this is used for is generating the title.
-
- scm2doc:main infile outfile
- Produce a documentation file `outfile' for the scheme file `infile'.
-